Log In  
[back to top]

[ :: Read More :: ]

Cart #47376 | 2017-12-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7


Cart #47368 | 2017-12-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7


I started playing Wipeout HD (Fury) again. I like this series. I had to try to make 3D stuff so here we go, a brand new custom model inspired from HD Fury's Feisar ship.

Once again, thanks to Eletricgryphon for the triangle routine and Rez for the tips

Edit : crammed shading in the cart!
Edit v3 : I got to optimize the mesh, remove a lot of internal faces, allowing me to add way more eyecandy. Wow.
Edit v3b : Added a gridless version.

Previous versions :

Cart #47316 | 2017-12-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

Cart #47322 | 2017-12-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

P#47317 2017-12-12 12:23 ( Edited 2017-12-14 15:23)

[ :: Read More :: ]

Cart #46544 | 2017-11-21 | Code ▽ | Embed ▽ | No License
15

Hello there. This is a silly cart I did as a result of a inside joke. It started with one of my current avatars being a tracing of a "I REGRET NOTHING" gif with a rotating chicken and it ended up somehow on Pico-8.

Some technical stuff:
So we have 12 frame gif exported into spritesheet/map data with a tool I wrote on the fly to make it possible and took most of the programming time. The tool loads the frames from a gif and split each frame in 8*8 sprites, indexes them to avoid repetition in sprites and gives me the map data of each frame (or better, the map values to be changed from a frame to another, making a frame's data negligible).

I wanted to use the vector tool to vectorize the frames by hand but the lack of overlaying a model image and the amount of frames made me prefer automatically chunking the frames instead...

The end result? Probably my silliest cart yet.

Sorry.

P#46545 2017-11-21 09:50 ( Edited 2017-11-21 14:50)

[ :: Read More :: ]

Cart #44091 | 2017-09-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Another small sketch. This one was inspired by one of Trasevol Dog's projects.

(Note : should I do a thread per sketch or a big thread for storing all of them?)

(Thanks to electricgryphon for their trifill routine)

P#44092 2017-09-11 09:45 ( Edited 2017-09-11 13:48)

[ :: Read More :: ]


Hey there, I did a few weeks ago a mini cart showing how Earthbound or Mother 3 would do most of the background effects.

I redid the whole routine and made two versions, vertical and horiztontal, which should cover a big part of the basics behind those games' technique (the rest being layer blending, scaling, palette cycling, or alternating backgrounds per line).

There are two implementations, sspr-based and map-based. The sspr based uses the data of a sprite at given coords and size to tile it on the screen whereas the map-based routines uses the map routine to directly draw a line of pixels on the screen. The map-based routines uses part of the map data but it makes up for allowing more than one sprite to be used, as you can see with the sample's colored corner areas.

Notes about the implementation:

  • I used time, amplitude, frequency and scale as global variables to make the implementation a bit less repetitive but you can pass them as arguments to the functions to have different settings
  • The map-based routines (map_<routine name>) assume that you're using at least a 16*16 map, but can be bigger. I haven't programmed an iteration allowing to use smaller maps to make it faster (as it'd use more than two map calls per line)
  • The map routines overrides camera and clip settings. Make sure to save their context before using.
P#43894 2017-09-03 10:54 ( Edited 2017-09-03 14:54)

[ :: Read More :: ]

After a few days of making a few sketches around some in-the-books tricks, I got an idea during a dream and decided to make it.

Cart #43572 | 2017-08-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5


Here's the alternative version. I may use it (or a tweaked version) as a album cover if I will ever do synthwave (or vaporwave, RIP)

P#43573 2017-08-24 03:20 ( Edited 2017-08-25 10:12)

[ :: Read More :: ]

Cart #40544 | 2017-05-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Just a small sketch for a moody day.

Alternative version

Cart #40546 | 2017-05-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

P#40545 2017-05-13 15:47 ( Edited 2017-05-13 19:49)

[ :: Read More :: ]

Hello everyone, this is just a small thing I did for Pixel Dailes.

Controls :

  • Left/Right : Move cursor.

I didn't do anything else than just this screen, I was mostly interested in throwing the bases. I might touch it up later but that's unprobably (unless people are interested in working on it together...)


(Older version, music-less)


Have a nice day!

P#35270 2017-01-08 15:31 ( Edited 2017-01-09 15:32)

[ :: Read More :: ]


Hello everyone, been a while I haven't done some PICO so there it is. It's a reboot of a years old dropped calculator project I wanted to do with a friend : an Epic Coaster demake. It's some sort of theme-park themed Canabalt self-proclamed tribute. Let's see how far you (and the developper :p ) will go! o/

Well, for now, I succesfully nailed (for once) physics and I also did some eyecandy, so everything should follow quite smoothly, like the whole game state, more platforms and stuff.

Instructions : Z to jump.

Changelog:
-0.02

  • Added an initial platform
    • Added gameover/replay just after
    • Fade animation
  • 0.01
    • Initial version
      Older versions:
  • 0.01
    Cart #21393 | 2016-05-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

P#21394 2016-05-26 08:41 ( Edited 2016-05-30 13:08)

[ :: Read More :: ]

Hello everyone, time to show you another project I just made last night : a stack-based Window Manager (WM), cleverfully named StackWM.

A WM is a program or library to manage windows, dispatch events/interactivity to them and draw them. THink of your Windows/Linux/Mac's windows. So yeah, that's totally overkill and eating most of your cart space but it was fun to do and it put me on the tracks for another unrelated project.

Sooo... What does the WM do?

  • Update/render events
  • Window render context :clipping and camera offsetting to limit the renderer to the window's area:
  • Focus or Global events : both aren't exclusive, you can manage both of them on one window.
  • Button/Buttonp events : global or focused (available only if the window is focused)
  • There is always one focused window. THere are helper functions to switch focus to another window.

What do I plan or think of adding to StackWM?

  • Easier customisation? (colors? booleans to set functionnalities like notitle, grabbable, resizable?)
  • Mouse support (emulated with pressing arrow keys and a button for click) and interaction support? (Click+grab on title -> grab window? CLick on close button : Close event?)

And here's a demo to show what I can do with StackWM. That's maybe a simple game but with time, better examples could be done. Have Fun!

Cart #12218 | 2015-08-03 | Code ▽ | Embed ▽ | No License
7

P#12283 2015-08-04 16:05 ( Edited 2015-08-10 12:25)

[ :: Read More :: ]

Cart #10086 | 2015-04-21 | Code ▽ | Embed ▽ | No License
11

Hi everyone! Here goes my first submitted thing : a recreation of the good old rotoscaling effect, quite known in the demoscene... scene... in way less than 1kb of code. I made it fit to a round 1kb by comments in the source code to explain some tricks about the calculation.

Rotoscaling is based on two things : rotation (good old cossin sin-cos) and scaling. I precalculate scaled sine and cosine tables according to the current angle in the update loop to gain some overall speed.

I programmed it on the alpha 0.0.5. I don't know if anything changed around to the speed/cpu usage but this should run quite quickly (don't expect 30 FPS neither, I couldn't make the pixel blit faster) on the 0.1 alpha.

I really liked playing with PICO and I'm not done at all with it! :D

P#10087 2015-04-21 13:14 ( Edited 2015-05-10 15:42)